Tide is a minimal and pragmatic Rust web application framework built for rapid development. It comes with a robust set of features that make building async web applications and APIs easier and more fun.
Getting started
In order to build a web app in Rust you need an HTTP server, and an async
runtime. After running cargo init
add the following lines to your
Cargo.toml
file:
# Example, use the version numbers you need
= "0.15.0"
= { = "1.8.0", = ["attributes"] }
= { = "1.0", = ["derive"] }
Examples
Create an HTTP server that receives a JSON body, validates it, and responds with a confirmation message.
use Request;
use *;
async
async
See more examples in the examples directory.
Tide's design:
- Rising Tide: building a modular web framework in the open
- Routing and extraction in Tide: a first sketch
- Middleware in Tide
- Tide's evolving middleware approach
- Tide, the present and future of
- Tide channels
Community Resources
To add a link to this list, edit the markdown file and submit a pull request (github login required)Listing here does not constitute an endorsement or recommendation from the tide team. Use at your own risk.
Listeners
- tide-rustls tls for tide based on async-tls/rustls
Template engines
- tide-tera
- tide-handlebars
- askama (includes support for tide)
Routers
Auth
Testing
Middleware
- tide-compress
- tide-sqlx - SQLx pooled connections & transactions
- tide-trace
- tide-tracing
- opentelemetry-tide
- driftwood http logging middleware
- tide-compressed-sse
- tide-websockets
Session Stores
- async-redis-session
- async-sqlx-session (sqlite and postgres currently)
- async-mongodb-session
Example applications
- dot dot vote
- tide-example (sqlx + askama)
- playground-tide-mongodb
- tide-morth-example
Contributing
Want to join us? Check out our The "Contributing" section of the guide and take a look at some of these issues:
Conduct
The Tide project adheres to the Contributor Covenant Code of Conduct. This describes the minimum behavior expected from all contributors.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.